/* HISTORIA */

.titulo-h{
    padding: 80px 0 0px 0;
	color: #121212;
	font-size: 35px;
	text-align: center;
	margin-bottom: 5px;
	font-family: Segoe UI Black;
}

.contenedor-historia{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;

}

.contenedor-historia figure{
    position: absolute;
    height: 40%;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px,15px,25px,rgba(0, 0, 0, 0.50);
    cursor: pointer;
}

.contenedor-historia figure img{
    width: 100%;
    height: 100%;
    transition: all 500ms ease-out;
}

.contenedor-historia figure p{
    color:white;
    font-family: oswald;
}

.contenedor-historia figure .capa{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.5);
    transition: all 500ms ease-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.capa{
    position: fixed;
}

.contenedor-historia figure:hover > .capa{
    opacity:1 ;
    visibility: visible;
}

.contenedor-historia figure:hover > .capa h3 {
    margin-top: 60px;
    margin-bottom: 15px;
}

.contenedor-historia figure .capa h3{
    color:white;
    font-weight: 800;
    margin-bottom: 120px;
    transition: all 500ms ease-out;
    margin-top: 30px;
}

.link1
{
        text-decoration: none;
}


@media screen and (max-width:900px){

    .contenedor-historia{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}